ActiveField Technology Objects Overview Hierarchy Chart How to Start: Application Object How to work with Problems How to work with Model How to work with Data How to Analyze Results

FieldQuantities Object

Summary

A collection of physical quantity descriptors (both local and integral) applicable to the current problem result.

Details

In ActiveField, you can obtain a FieldQuantities collection as one of the properties of your problem's Result property. These collections provide you with the lists of local and integral physical quantities related to your problem type in general or specific conditions.

Result object provides two properties of FieldQuantities type:

The following FieldQuantities features are common for all ActiveFields collections:

Besides that, the collection FieldQuantities provides methods for adding and removal of its elements:

In the example below removal and adding methods are used to make a collection having two physical units: potential and its gradient absolute value:

Dim coll as QuickField.FieldQuantities
set coll = res.LocalFieldQuantities
coll.Clear
coll.Add (qfPotential)
coll.Add (qfGrad)

You can obtain the name of a FieldQuantity object through the value of its Name property.